home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscDoc.mbox / No_subject.attach / ControllerTest / MOImageDocController.h < prev    next >
Text File  |  1994-02-11  |  1KB  |  44 lines

  1. // MOImageDocController.h
  2. //
  3. // by Mike Ferris
  4. // Part of MOKit
  5. // Copyright 1993, all rights reserved.
  6.  
  7. // ABOUT MOKit
  8. // 
  9. // MOKit is a collection of useful and general objects.  Permission is 
  10. // granted by the author to use MOKit in your own programs in any way 
  11. // you see fit.  All other rights to the kit are reserved by the author 
  12. // including the right to sell these objects as part of a LIBRARY or as 
  13. // SOURCE CODE.  In plain English, I wish to retain rights to these 
  14. // objects as objects, but allow the use of the objects as pieces in a 
  15. // fully functional program.  NO WARRANTY is expressed or implied.  The author 
  16. // will under no circumstances be held responsible for ANY consequences to 
  17. // you from the use of these objects.  Since you don't have to pay for 
  18. // them, and full source is provided, I think this is perfectly fair.
  19.  
  20. // ABOUT MOImageDocController
  21. //
  22.  
  23. #import "MODocController.h"
  24.  
  25. @interface MOImageDocController:MODocController
  26. {
  27.     id imageView;
  28. }
  29.  
  30. + initialize;
  31.  
  32. - doSaveTiff:(MODocType *)type;
  33. - doRevertImage:(MODocType *)type;
  34.  
  35. - (BOOL)doClear;
  36. - (BOOL)doPrint;
  37.  
  38. - imageView;
  39. - setImage:(NXImage *)image;
  40. - image;
  41.  
  42. @end
  43.  
  44.